介紹幾個比較重要事件
1.mobileinit:可以利用它來擴展$.mobile或者修改默認配置。
→對mobileinit的綁定事件需要在引入jquery.mobile.js之前
→擴展的方式有兩種哦
2.$.mobile.loadPage(url,[options]):將某個頁面加載到當前頁面中,並自動對其增強。
→loadPage只是載入到DOM中,不會顯示。
3.$.mobile.changePage(toPage,[options]):替換當前頁面參數toPage:文件URL或者內部的ID。
4.$.mobile.showPageLoadingMsg(theme,msgText,textonly):彈出提示訊息。
→參數Theme(主題)、msgText(提示文字訊息)、textonly(是否顯示文字)。
5$.mobile.hidePageLoadingMsg():關閉提示訊息。
6$.mobile.silentScroll(number):垂直滾動number,不會觸發scrollstart和scrollstop。
7、捲動事件:
→給window綁定scrollstart事件。
→给window绑定scrollstop事件。
以上小小分享,有任何問題還請多多指教。